
.carousel-container .card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.carousel-container .card img {
    display: block;
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;

}

body {
  background-image: url('../img/dbm2.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  opacity: 30;
  color : white;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  z-index: 1000;
}

.logo img {
  width: 45px;
  height: 45px;
}

/* Right Menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ffcc00;
}

/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 12px 0;
  }
}
.carousel-container {
  width: 100%;
  overflow: hidden; /* Hides the duplicated images initially */
}

.carousel-wrapper {
  display: flex;
  /* Adjust the total width based on the number of original items */
  width: 200%; /* If 4 items, and we duplicate them, we need 200% width for the wrapper */
  animation: scroll 40s linear infinite; /* Adjust duration and timing as needed */
}

.carousel-wrapper img {
  width: 25%; /* Each item takes up a fraction of the total wrapper width (100% / 4 items) */
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Moves the width of the original set of images (half the wrapper width) */
    transform: translateX(-50%); 
  }
}

/* Pause animation on hover */
.carousel-container:hover .carousel-wrapper {
  animation-play-state: paused;
}


/* Blog Section */

.leftcolumn {   
  float: left;
  width: 75%;
  background-color: rgba(0, 0, 0, 0);
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
   background-color: rgba(0, 0, 0, 0.438);
   padding: 20px;
   margin-top: 20px;
  
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

h2,h3,span{
  color: #fff;
}

p{
  color: #fff;
}
div{
  color: #fff;
}
a {
  text-decoration: none;
  color: white;
}


/* Blog Section End */


/* FOOTER START HERE */

    .footer{
      background-color: #111;
    }
    .footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

/* FOOTER END HERE */

